계단을 만들어보자.

public class Stair {
	public static void main(String[] args) {
		int rows = 5;
		for (int i = 0; i <= rows; i++) {
			for (int j = 0; j < i; j++) {
				System.out.print('*');
			}
			System.out.println("");
		}
	}
}
*
**
***
****
*****